home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / memory / calloc.c next >
C/C++ Source or Header  |  1990-06-20  |  313b  |  25 lines

  1.  
  2. /*
  3.  *  CALLOC.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  *
  7.  *  calloc(elmsize, elms)
  8.  */
  9.  
  10. #include <stdlib.h>
  11.  
  12. void *
  13. calloc(elmSize, elms)
  14. size_t elmSize;
  15. size_t elms;
  16. {
  17.     void *ptr;
  18.     long bytes = elmSize * elms;
  19.  
  20.     if (ptr = malloc(bytes))
  21.     clrmem(ptr, bytes);
  22.     return(ptr);
  23. }
  24.  
  25.